blob: dd5b50caed2acd4d084845ed46726c52e63c140d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
import Layout from '../../../../layouts/Layout.astro';
import staticPaths from '../../staticPaths';
import translate from '../../../../i18n/translate';
import tFurthsettins from '../../../../i18n/translations/pages/furthsettins';
import tSite from '../../../../i18n/translations/site';
import type Locale from '../../../../types/Locale';
import LallansIssuesGallery from '../../../../components/LallansIssuesGallery.astro';
export async function getStaticPaths() { return staticPaths; }
const locale = Astro.params.locale as Locale;
const t = translate(locale);
---
<Layout locale={locale} title={ t(tFurthsettins, 'title') }>
<main id="main">
<h1>Lallans</h1>
<LallansIssuesGallery />
</main>
</Layout>
|